-
Notifications
You must be signed in to change notification settings - Fork 379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SubtreeCache: Use log tile funcs directly #2398
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2398 +/- ##
==========================================
- Coverage 65.78% 65.76% -0.03%
==========================================
Files 107 107
Lines 7749 7743 -6
==========================================
- Hits 5098 5092 -6
Misses 2119 2119
Partials 532 532
Continue to review full report at Codecov.
|
03205f4
to
8d0bd48
Compare
8d0bd48
to
5703118
Compare
I recommend reviewing commit-by-commit, with "Hide whitespace changes" enabled. |
@@ -14,10 +14,7 @@ | |||
|
|||
package storage | |||
|
|||
import ( | |||
"github.com/google/trillian/storage/storagepb" | |||
"github.com/google/trillian/storage/tree" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This builds without tree
being imported?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Look 2 lines below :)
This change makes the
SubtreeCache
use log tile population functions directly,as it no longer needs to be log/map polymorphic.
#2378